home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH10 / creator / ui / InspectAddFieldDlg.gui < prev    next >
Text File  |  2005-11-23  |  2KB  |  104 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(InspectAddFieldDlg) {
  3.     profile = "GuiDefaultProfile";
  4.     horizSizing = "right";
  5.     vertSizing = "bottom";
  6.     position = "0 0";
  7.     extent = "640 480";
  8.     minExtent = "8 8";
  9.     visible = "1";
  10.     helpTag = "0";
  11.  
  12.     new GuiWindowCtrl() {
  13.         profile = "GuiWindowProfile";
  14.         horizSizing = "center";
  15.         vertSizing = "center";
  16.         position = "209 177";
  17.         extent = "221 125";
  18.         minExtent = "8 8";
  19.         visible = "1";
  20.         helpTag = "0";
  21.         text = "Add dynamic field...";
  22.         resizeWidth = "1";
  23.         resizeHeight = "1";
  24.         canMove = "1";
  25.         canClose = "1";
  26.         canMinimize = "1";
  27.         canMaximize = "1";
  28.         minSize = "50 50";
  29.       closeCommand = "Canvas.popDialog(InspectAddFieldDlg);";
  30.  
  31.         new GuiTextCtrl() {
  32.             profile = "GuiTextProfile";
  33.             horizSizing = "right";
  34.             vertSizing = "bottom";
  35.             position = "22 32";
  36.             extent = "30 18";
  37.             minExtent = "8 8";
  38.             visible = "1";
  39.             helpTag = "0";
  40.             text = "Name:";
  41.         };
  42.         new GuiTextCtrl() {
  43.             profile = "GuiTextProfile";
  44.             horizSizing = "right";
  45.             vertSizing = "bottom";
  46.             position = "21 58";
  47.             extent = "31 18";
  48.             minExtent = "8 8";
  49.             visible = "1";
  50.             helpTag = "0";
  51.             text = "Value:";
  52.         };
  53.         new GuiTextEditCtrl(InspectAddFieldValue) {
  54.             profile = "GuiTextEditProfile";
  55.             horizSizing = "right";
  56.             vertSizing = "bottom";
  57.             position = "62 58";
  58.             extent = "146 18";
  59.             minExtent = "8 8";
  60.             visible = "1";
  61.             helpTag = "0";
  62.             historySize = "0";
  63.             maxLength = "255";
  64.         };
  65.         new GuiTextEditCtrl(InspectAddFieldName) {
  66.             profile = "GuiTextEditProfile";
  67.             horizSizing = "right";
  68.             vertSizing = "bottom";
  69.             position = "62 32";
  70.             extent = "146 18";
  71.             minExtent = "8 8";
  72.             visible = "1";
  73.             helpTag = "0";
  74.             historySize = "0";
  75.             maxLength = "255";
  76.         };
  77.         new GuiButtonCtrl() {
  78.             profile = "GuiButtonProfile";
  79.             horizSizing = "right";
  80.             vertSizing = "bottom";
  81.             position = "25 88";
  82.             extent = "73 20";
  83.             minExtent = "8 8";
  84.             visible = "1";
  85.             helpTag = "0";
  86.             text = "OK";
  87.          command = "canvas.popDialog(InspectAddFieldDlg);InspectAddFieldDlg.doAction();";
  88.         };
  89.         new GuiButtonCtrl() {
  90.             profile = "GuiButtonProfile";
  91.             horizSizing = "right";
  92.             vertSizing = "bottom";
  93.             position = "125 88";
  94.             extent = "73 20";
  95.             minExtent = "8 8";
  96.             visible = "1";
  97.             helpTag = "0";
  98.             text = "CANCEL";
  99.          command = "canvas.popDialog(InspectAddFieldDlg);";
  100.         };
  101.     };
  102. };
  103. //--- OBJECT WRITE END ---
  104.